home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_std / pointer_ref.e < prev    next >
Encoding:
Text File  |  1997-04-13  |  265 b   |  17 lines  |  [TEXT/ttxt]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class POINTER_REF
  5.  
  6. feature 
  7.  
  8.    item: POINTER;
  9.  
  10.    set_item(value: like item) is
  11.       do
  12.      item := value;
  13.       end;
  14.  
  15. end -- POINTER_REF
  16.  
  17.